﻿<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
	<ribbon startFromScratch="false">
		<tabs>
			<tab id="customTab" label="PowerExcel">
				<group id="customGroup" label="Office 2016">
					<button id="customButton1" 
						  label="Access" 
						  imageMso="MicrosoftAccess" 
						  size="large" 
						  onAction="RunAC" />
					<button id="customButton2" 
						  label="Powerpoint" 
						  imageMso="MicrosoftPowerPoint" 
						  size="large" 
						  onAction="RunPP" />
					<button id="customButton3" 
						  label="Outlook" 
						  imageMso="MicrosoftOutlook" 
						  size="large"
						  onAction="RunOL" />
				</group>
			</tab>
		</tabs>
	</ribbon>
</customUI>